home *** CD-ROM | disk | FTP | other *** search
-
- DEFTYPE.w:WBStartup
-
- #TAG_DONE=0
-
- #SPRITERESN_ECS=0
- #SPRITERESN_140NS=1
- #SPRITERESN_70NS=2
- #SPRITERESN_35NS=3
- #SPRITERESN_DEFAULT=-1
-
- #VTAG_SPRITERESN_SET=$80000031
-
- NEWTYPE .taglist
- ti_tag.l:ti_data
- End NEWTYPE
-
- ScreenTags 0,"hello"
-
- scradr.l=Peek.l(Addr Screen(0))
- cmapadr.l=Peek.l(scradr+48) ;screen->viewport->colourmap
-
- If cmapadr=0 Then NPrint "ERROR: No Colourmap":End ;shouldn't happen really
-
- Dim tags.taglist(1)
-
- tags(0)\ti_tag=#VTAG_SPRITERESN_SET,#SPRITERESN_35NS
- tags(1)\ti_tag=#TAG_DONE
-
- ;make hires
-
- VideoControl_ cmapadr,&tags(0) ;set our video tags
- MakeScreen_ scradr:RethinkDisplay_ ;and reshow our screen
-
- MouseWait
-
- ;make lores
-
- tags(0)\ti_tag=#VTAG_SPRITERESN_SET,#SPRITERESN_DEFAULT
-
- VideoControl_ cmpadr,&tags(0) ;set our video tags
- MakeScreen_ scradr:RethinkDisplay_ ;and reshow our screen
-
- End
-
-